home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / print / proff.zip / DEBUG.H next >
Text File  |  1988-02-13  |  135b  |  12 lines

  1. /*
  2. #define DEBUG
  3. #define PROFILE
  4. */
  5.  
  6. #ifdef PROFILE
  7. #define dprintf(str)    printf((str));
  8. #else
  9. #define dprintf(str)
  10. #endif
  11.  
  12.